All Questions
57 questions
-1votes
2answers
2kviews
How to search using tags in angularjs
I wanted my search box to search using tags which I have illustrated below with the image. I have tried using bootstrap tags it doesn't work for me. This is how my search should look like
2votes
1answer
3kviews
How to return results from a $uibModal to parent controller
scope is undefined after callback from $uibModal I have a directive (Angularjs) that has a controller, from there I am calling an uibModal where I want to modify some details of an object where I ...
1vote
0answers
499views
In AngularJS validation, I want to display error message with ui-bootstrap tooltip
environment AnuglarJS 1.6x ui-bootstrap2.5 I want to display error messages with tool tip on validation with AngularJS. I am referring to the directive created by the following jQuery and bootstrap....
0votes
1answer
1kviews
Angular UI - Watch value from input in Popover Template
I'm trying to create a directive which uses the Angular Bootstrap Popover, which contains an input. Everything works fine, except the watch is not triggering. Here is a Plunker. The directive looks ...
1vote
1answer
205views
Angular Nested Filters & Infinite $digest Loop
I (like so many others) have run into an issue with the infinite $digest loop. After reading many SO Q&As and spending plenty of time in AngularJS documentation I am still not certain how to build ...
0votes
1answer
660views
Bootstrap alert message is not working inside angular run blocks under ui-router?
I am doing sample application to autologut if user is idle for 30 Min. before 1 minutes to logOut have to show an warning message to the user. So i have calculated the minutes and show the warning ...
0votes
0answers
44views
Telling angular to pickup a dynamically added directive
I am creating a bootstrap popover and I'm trying to use a directive in the content of the popover. I use the following HTML: <div data-animation="false" data-template='<div style="width: ...
11votes
4answers
3kviews
Datepicker-popup formatting not working when value set initially in scope
I am using the Angular UI bootstrap date picker popup using this custom directive on Plunker (http://plnkr.co/edit/053VJYm1MpZUiKwFTfrT?p=preview): //Module var userModule = angular.module("...
1vote
1answer
154views
Dynamically load Angular UI-Bootstrap accordian from controller
I'm using an array in my controller to store a list of names. Depending on the company the user clicks on, however, that list will obviously change many times after the page is loaded. I have a ...
2votes
3answers
3kviews
$uibModalProvider <- $uibModal <- StatusModalService giving error
Trying to built a modal with angularjs and ui-bootstrap: Version Angularjs and its component is 1.5.3 ui-bootstrap-tpls-1.3.3.js. In main app file I have included 'ui.bootstrap' as var App = ...
0votes
2answers
74views
Accordion directive, tabs not closing do click
I am in the process of replacing all my bootstrap.js components with their respective angular counterparts using UI Boostrap. So far so good, but i can't seam to figure out to keep only the active tab ...
1vote
2answers
2kviews
Angular UI Bootstrap modal display during $http request
I am trying to create a directive that uses angular ui bootstrap modal. I would like to open this directive from my controller when a $http request is made, and close it when the request resolves. I'm ...
4votes
1answer
655views
UI Bootstrap modal in directive- multiple modals but only one opens
As seen in this Plunkr, I have two modals, each in separate directive of modal-one and modal-two. The problem is, that only modal one is being opened, even when clicking on modal two button. I guess ...
2votes
1answer
809views
how to use angular expression value as an attribute for html element
I have a scenario where i need to apply different directives (attribute) to a DIV inside a Angular bootstrap Modal at runtime (button click). I would know the name of the directive to apply. But i am ...
0votes
2answers
368views
How to pass a list of a picklist component via AJAX to my Java controller in AngularJS?
Project: jsp + AngularJS I have a modal, where I already pass some info to my Java controller via POST (ajax), it works fine. But, I inserted a new component and I do not know how to receive my ...